home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / madtrb9.arc / SHOWTIME.PAS < prev    next >
Pascal/Delphi Source File  |  1985-12-12  |  195b  |  11 lines

  1. Program Show_Time;
  2. {$I time.inc }
  3. begin
  4.   clrscr;
  5.   gotoxy(1,1);
  6.   write('Time: hr:min:sec      Press any key to quit');
  7.   repeat
  8.     showtime;
  9.     delay(100);
  10.   until keypressed;
  11. end.